-
Notifications
You must be signed in to change notification settings - Fork 22
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
chore: move abi utils to snapi #2105
Conversation
Artifacts upload triggered. View details here |
Artifacts upload triggered. View details here |
Benchmark movements: |
d4c55e7
to
8fa9411
Compare
77ed7da
to
3569518
Compare
Artifacts upload triggered. View details here |
Benchmark movements: |
8fa9411
to
fa4cc11
Compare
3569518
to
36e1f11
Compare
Artifacts upload triggered. View details here |
36e1f11
to
4320c8b
Compare
Artifacts upload triggered. View details here |
Benchmark movements: full_committer_flow performance improved 😺 |
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #2105 +/- ##
===========================================
+ Coverage 40.10% 77.35% +37.24%
===========================================
Files 26 382 +356
Lines 1895 40219 +38324
Branches 1895 40219 +38324
===========================================
+ Hits 760 31110 +30350
- Misses 1100 6817 +5717
- Partials 35 2292 +2257 ☔ View full report in Codecov by Sentry. |
4320c8b
to
0964710
Compare
Artifacts upload triggered. View details here |
Benchmark movements: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Reviewed 34 of 50 files at r1, 18 of 18 files at r2, all commit messages.
Reviewable status: complete! all files reviewed, all discussions resolved (waiting on @ayeletstarkware)
0964710
to
fafad83
Compare
Artifacts upload triggered. View details here |
Artifacts upload triggered. View details here |
Benchmark movements: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Reviewed 3 of 3 files at r3, all commit messages.
Reviewable status: complete! all files reviewed, all discussions resolved (waiting on @ayeletstarkware and @MohammadNassar1)
In this PR we move code from the
blockifier
crate, theabi
folder, intostarknet_api
.Specifically:
0. Split the model
crates/blockifier/src/abi.rs
. The other part is moved tocrates/starknet_api/src/abi.rs
.crates/blockfier/src/abi/constants.rs
. The other part is moved tocrates/starknet_api/src/abi/constants.rs
.crates/blockifier/src/abi/abi_utils.rs
is moved tocrates/starknet_api/src/abi/abi_utils.rs
(with the corresponding test util).